home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1986, 1987 Pat Joseph Monardo. All rights reserved.
- * Copying of this file is granted according to the provisions
- * specified in the file COPYING which must accompany this file.
- */
-
-
- /*
- * char.h
- */
-
- global ascii xord[];
-
- #define FIRST_ASCII_CODE 0
- #define LAST_ASCII_CODE 127
-
- global char xchr[];
-
- #define FIRST_TEXT_CHAR 0
- #define LAST_TEXT_CHAR 127
-
- #define TAB 011
- #define FORM_FEED 014
- #define CARRIAGE_RETURN 015
- #define NULL_CODE 000
- #define INVALID_CODE 0177
-
- int init_char();
-